home *** CD-ROM | disk | FTP | other *** search
- ; This is a standard replacement file to use with CONVERT.
- ; It changes "soft CR's" (SPACE CR) to a single SPACE.
- ; It changes DOUBLE QUOTES to double SINGLE QUOTES.
- ; It converts TABS to 8 spaces.
- ; It changes '<' to STARTCODE and '>' to ENDCODE.
- ;
- ; change CR/LF to just CR
- =e=l
- =e
- ; if indents were made by multiple spaces, this strips off the final
- ; remaining first space after changing multiple spaces to single spaces
- =e=032
- =e
- ; soft CR's; this works with some word processors
- =032=e
- =032
- -=e
- -
- ; DOUBLE QUOTE replacements must be done in this order.
- ; left DOUBLE QUOTE, with SPACE or CR before it.
- =032"=?1
- =032``=?1
- =e"=?1
- =e``=?1
- ; right DOUBLE QUOTE, with anything else before it.
- =?1"
- =?1''
- ; left DOUBLE QUOTE, as first character.
- "
- ``
- ; TAB - May want instead to turn TABs to single spaces
- =009
- =032=032=032=032=032=032=032=032
- ; STARTCODE
- <
- =017
- ; ENDCODE
- >
- =016
-